(logo)  AWeb supported HTML

Index

comment
A
ADDRESS
AREA
B
BASE
BASEFONT
BGSOUND
BIG
BLOCKQUOTE
BODY
BQ
BR
CAPTION
CENTER
CITE
CODE
DD
DFN
DIR
DIV
DL
DT
EM
FONT
FORM
FRAME
H1..H6
HEAD
HR
HTML
I
IMG
INPUT
ISINDEX
KBD
LI
LISTING
MAP
MENU
OL
OPTION
P
PRE
S
SAMP
SCRIPT
SELECT
SMALL
STRIKE
STRONG
STYLE
SUB
SUP
TABLE
TD
TEXTAREA
TH
TITLE
TR
TT
U
UL
VAR
XMP

Functional overview

Document structure
HTMLHTML document
HEADdocument head
BODYdocument body
commentHTML comments
Text structuring
Hnheadings
DIVdivision
CENTERcentered division
Pparagraphs
BRline break
PREpreformatted text
HRhorizontal rule
FRAMEframes
Document header
TITLEdocument title
SCRIPTscript statements
STYLEstyle information
Logical text styles
ADDRESSaddress
BQ, BLOCKQUOTElong quotation
CITEcitation
CODEcode sample
DFNdefinition
EMemphasized
KBDkeyboard input
SAMPsample output
STRONGstrong emphasis
VARvariables
Physical text styles
Bbold
BIGlarge font
Iitalics
SMALLsmall font
S, STRIKEstrikethrough
SUBsubscript
SUPsuperscript
TTfixed width
Uunderlined
BASEFONTset base font size
FONTchange font size or colour
Links and multimedia
Ahypertext link
IMGinlined image
MAPclient-side image map
AREAclient-side image map area
BGSOUNDbackground sound
Tables
TABLEtable
CAPTIONtable caption
TDtable cell
THtable header cell
TRtable row
Lists
OLordered (numbered) list
ULunordered list
LIlist item
DIRdirectory list
MENUmenu list
DLdefinition list
DTterm
DDdefinition
Fill-in forms
ISINDEXone-line index form
FORMform
INPUTform field
SELECTselection field
OPTIONoption in a selection field
TEXTAREAmulti-line text entry field

Tags

The Mode column in the tables below contains the HTML mode that recognizes the tag or attribute. Elements recognized in strict mode will also be recognized in tolerant mode, but elements marked as tolerant will not be recognized in strict mode.

comment

TagExplanationMode
<!--comment--> Includes a comment in the HTML source. Any text or tags within the comment are ignored by the browser. Strict
<!--comment-- [--comment--] > The correct format of a HTML comment construct:
  1. The comment starts with <!--
  2. Any number of characters not containing --
  3. The first comment is terminated by --
  4. Optional whitespace (spaces, newlines)
  5. Either another comment starting with --, continue with step 2
    or the terminating >
So this is a correct comment:
<!--This is a comment-- -->this<- is another comment-- >
But this is not:
<!--This is a comment---->
(The second comment was started but never ended).
Strict
<!--comment-> An incorrect comment format, unfortunately used on many pages. The comment is terminated by the first -> found. AWeb recognizes this comment format only in compatible mode. Compatible

A

TagExplanationMode
<A> ... </A> Hyperlink anchor, specifies either a link to another location, or a named location within a page. Strict
AttributeExplanationMode
HREF="url" Specifies a destination for the hyperlink. "url" can be one of the following:
Full URL
a fully specified (absolute) URL, like http://www.networkx.com/amitrix/index.html
Filename
a filename (or path with filename). This specifies a location relative to the address of the page (but see BASE).
#name
the name of a location in the same page
Strict
NAME="name" Defines a name in this page. You can point directly to this name using an anchor with HREF="url#name" Strict

ADDRESS

TagExplanationMode
<ADDRESS> ... </ADDRESS> Specifies a (mail) address. Typically rendered in italics. Strict

AREA

TagExplanationMode
<AREA> Can only appear within a MAP element
Specifies a hot area with a client-side image map.
Strict
AttributeExplanationMode
COORDS="nn,nn,nn,..." Lists the coordinates that describe this area. The number of coordinates depends on the shape:
SHAPECOORDS
RECT needs 4 coordinates: x,y of upper left and x,y of bottom right corners if the rectangle
CIRC needs 3 coordinates: x,y of the center of the circle and a radius
POLY needs at least 3 pairs of x,y coordinates of the corners of the polygon
DEFAULT no coordinates are needed for default
Strict
HREF="url" Specifies the URL that this area of the map links to. Strict
NOHREF Specifies that this area does not link to an URL. Strict
SHAPE=RECT
SHAPE=CIRC
SHAPE=POLY
SHAPE=DEFAULT
Specifies the shape of the hot area. Instead of the 4-letter abbreviations, the full words may be used (RECTANGLE, CIRCLE, POLYGON).

DEFAULT becomes active if no other area was selected.

Strict

B

TagExplanationMode
<B> ... </B> Renders text in bold. Usually it is better to use one of the logical styles (like STRONG) instead of phisycal styles like B. Strict

BASE

TagExplanationMode
<BASE> Can only appear within a HEAD element
Defines the base URL for this page. The base URL is the address to use when resolving relative URL references (partial URLs). By default the base URL is the page's address.
Strict
AttributeExplanationMode
HREF="url" Specifies the URL to use as the base Strict

BASEFONT

TagExplanationMode
<BASEFONT> Sets the size normal text is rendered in, and that relative FONT sizes refer to. Tolerant (NS)
AttributeExplanationMode
SIZE=nn Specifies the font size. Valid sizes are 1 to 7. Default size is 3. Tolerant (NS)

BGSOUND

TagExplanationMode
<BGSOUND> Defines a sound to play when this page is displayed. Tolerant (MS)
AttributeExplanationMode
SRC="url" Specifies the URL where the sound can be found. Tolerant (MS)
LOOP=n
LOOP=INFINITE
The number of times the sound should be played. If the number is negative, or if "INFINITE" is given, the sound will be repeated forever while the page is being displayed. Tolerant (MS)

BIG

TagExplanationMode
<BIG> ... </BIG> Renders text in a large font. Strict

BQ or BLOCKQUOTE

TagExplanationMode
<BQ> ... </BQ>
<BLOCKQUOTE> ... </BLOCKQUOTE>
Specifies a text as long quotation. Typically rendered in italics. Strict

BODY

TagExplanationMode
<BODY> ... </BODY> Specifies the body if an HTML document. Each HTML document must have exactly 1 body. Strict
AttributeExplanationMode
BACKGROUND="url" Specifies a background image. The image is tiled in the background of the page. Strict
BGCOLOR=#rrggbb
BGCOLOR=colourname
Specifies the pages background colour if no background image is given, or the background image is not (yet) loaded.
See colour specifications for a list of valid names.
Strict
TEXT=#rrggbb
TEXT=colourname
Specifies colour to render normal text in. If no background image is loaded, and no background colour is specified, this attribute is ignored. Using a foreground colour with no control over the colour of the background may result in unreadable pages.
See colour specifications for a list of valid names.
Strict
LINK=#rrggbb
LINK=colourname
Specifies colour to render unvisited hyperlinks in. If no background image is loaded, and no background colour is specified, this attribute is ignored. Using a foreground colour with no control over the colour of the background may result in unreadable pages.
See colour specifications for a list of valid names.
Strict
VLINK=#rrggbb
VLINK=colourname
Specifies colour to render already visited hyperlinks in. If no background image is loaded, and no background colour is specified, this attribute is ignored. Using a foreground colour with no control over the colour of the background may result in unreadable pages.
See colour specifications for a list of valid names.
Strict
ALINK=#rrggbb
ALINK=colourname
Specifies colour to render selected (highlighted) hyperlinks in. If no background image is loaded, and no background colour is specified, this attribute is ignored. Using a foreground colour with no control over the colour of the background may result in unreadable pages.
See colour specifications for a list of valid names.
Strict

BR

TagExplanationMode
<BR> Specifies a line break. Strict
AttributeExplanationMode
CLEAR=LEFT
CLEAR=RIGHT
CLEAR=ALL
Places the following text after left aligned, right aligned or all floating images. Strict

CAPTION

TagExplanationMode
<CAPTION> ... </CAPTION> Can only appear within a TABLE element
Specifies a caption for a table.
Strict
AttributeExplanationMode
ALIGN=TOP
ALIGN=BOTTOM
Specifies whether the caption should appear above the table (ALIGN=TOP) or below the table (ALIGN=BOTTOM). Strict
ALIGN=LEFT
ALIGN=CENTER
ALIGN=RIGHT
Specifies the alignment of the caption relative to the table width. Tolerant (IE)
VALIGN=TOP
VALIGN=BOTTOM
Specifies whether the caption should appear above the table (VALIGN=TOP) or below the table (VALIGN=BOTTOM). Tolerant (IE)

CENTER

TagExplanationMode
<CENTER> ... </CENTER> Renders text and other elements centered within the window width.
Is a shorthand notation for <DIV ALIGN=CENTER>
Strict

CITE

TagExplanationMode
<CITE> ... </CITE> Specifies a citation. Typically rendered in italics. Strict

CODE

TagExplanationMode
<CODE> ... </CODE> Specifies a short code sample. Typically rendered in a fixed width font. Strict

DD

TagExplanationMode
<DD> Can only appear within a DL element
Specifies a description in a definition list. The description is rendered indented.
Strict

DFN

TagExplanationMode
<DFN> ... </DFN> Specifies a definition. Typically rendered in italics. Strict

DIR

TagExplanationMode
<DIR> ... </DIR> Specifies a directory list. AWeb renders a DIR list exactly the same as a UL list. Strict

DIV

TagExplanationMode
<DIV> ... </DIV> Specifies a division of the document for aligning purposes. Strict
AttributeExplanationMode
ALIGN=LEFT
ALIGN=CENTER
ALIGN=RIGHT
Renders the text and other elements within the division left aligned, centered within the window width, or right aligned with the window border. Strict

DL

TagExplanationMode
<DL> ... </DL> Specifies a definition list. Each entry in the list contains one or more DT elements to specify the term, and one DD element that contains the desciption of that term Strict

DT

TagExplanationMode
<DT> Can only appear within a DL element
Specifies a term in a definition list. The term is rendered non-indented as opposed to the definition of the term.
Strict

EM

TagExplanationMode
<EM> ... </EM> Specifies emphasized text. Typically rendered in italics. Strict

FONT

TagExplanationMode
<FONT> ... </FONT> Specifies a change in font size or colour. Strict
AttributeExplanationMode
COLOR=#rrggbb
COLOR=colourname
Specifies the colour to render the text in. If no background image is loaded, and no background colour is specified for the document BODY, this attribute is ignored. Using a font colour with no control over the colour of the background may result in unreadable pages.
See colour specifications for a list of valid names.
Strict
SIZE=nn
SIZE=+nn
SIZE=-nn
Specifies the font size.

If nn is given, it is an absolute size. Valid sizes are 1 to 7, 1 being the smallest and 7 the largest.

If +nn or -nn is given, it is a change relative to the current BASEFONT or Hn size. Valid range is -6 to +6, but the resulting font size will be adjusted to fall within the range 1 to 7. Note that relative font size changes are not cumulative.

Strict

FORM

TagExplanationMode
<FORM> ... </FORM> Specifies a fill-in form. The form should contain one or more INPUT, SELECT or TEXTAREA elements that define the form fields. Strict
AttributeExplanationMode
ACTION="url" Specifies the address to be used to carry out the form's action. Default is the form's address. Strict
METHOD=GET
METHOD=POST
Specifies how the form data should be sent to the action address. METHOD=GET includes the arguments in a URL. METHOD=POST sends the data using a HTTP post transaction. Strict

FRAME

TagExplanationMode
<FRAME> Specifies a frame link. AWeb currently doesn't fully support frames. Instead, each FRAME element is rendered as a normal hyperlink. Tolerant (NS)
AttributeExplanationMode
NAME="name" Specifies the name of the frame to load the document in. Tolerant (NS)
SRC="url" Specifies the address of the frame data. See A for details. Tolerant (NS)

H1..H6

TagExplanationMode
<H1> ... </H1>
  :
<H6> ... </H6>
Specifies a heading. There are six levels of heading that may be rendered in different fonts, sizes and styles. H1 is the most important heading, H6 the least important. Strict
AttributeExplanationMode
ALIGN=LEFT
ALIGN=CENTER
ALIGN=RIGHT
Specifies the horizontal position of the header in the window. Strict

HEAD

TagExplanationMode
<HEAD> ... </HEAD> Specifies the document header section. This section contains meta-information about the document, like the TITLE. Each HTML document must have exactly 1 HEAD. Strict

HR

TagExplanationMode
<HR> Renders a horizontal rule. Strict
AttributeExplanationMode
ALIGN=LEFT
ALIGN=CENTER
ALIGN=RIGHT
Specifies the location where to render a short rule in the window. Default is centered within the window width. Strict
NOSHADE Renders the rule as a solid line or block, with no 3-d effects. Strict
SIZE=nn Specifies the vertical size of the ruler, measured in pixels. Default is 2 pixels. Strict
WIDTH=nn%
WIDTH=nn
Specifies the width of the ruler, either in a percentage of the window width, or as a number of pixels. Default is a width of 100%. Strict
COLOR=#rrggbb
COLOR=colourname
Specifies the colour to render the rule in. This attribute implies the NOSHADE attribute.
If no background image is loaded, and no background colour is specified for the document BODY, this attribute is ignored. Using a rule colour with no control over the colour of the background may result in unreadable pages.
See colour specifications for a list of valid names.
Tolerant (IE)

HTML

TagExplanationMode
<HTML> ... </HTML> Specifies a HTML document. Each HTML document must begin with <HTML> and end with </HTML>. Strict

I

TagExplanationMode
<I> ... </I> Renders text in italics. Usually it is better to use one of the logical styles (like EM) instead of phisycal styles like I. Strict

IMG

TagExplanationMode
<IMG> Specifies an image to be displayed inlined with the text. Strict
AttributeExplanationMode
ALIGN=TOP
ALIGN=MIDDLE
ALIGN=BOTTOM
Specifies how the image should be aligned with the text:
ALIGNMeaning
TOPthe top of the image aligns with the top of the tallest element in the line
MIDDLEthe middle of the image aligns with the text baseline
BOTTOMthe bottom of the image aligns with the text baseline
Strict
ALIGN=LEFT
ALIGN=RIGHT
Specifies that the image is a floating image. It is flushed to the current left or right margin, and the text will flow around it. Strict
ALT="text" Specifies the text to be displayed when the image isn't loaded (yet). Strict
BORDER=nn Specifies the thickness of the border if the image is a link. BORDER=0 means no border. Strict
HEIGHT=nn
WIDTH=nn
Specifies the height and the width of the image in pixels. AWeb uses this to reserve enough space for the image, so that once it is loaded no reformatting of the page is needed. Strict
HSPACE=nn
VSPACE=nn
Specifies a margin around the image for floating images. Without margin the text will be placed directly adjacent to the image. Strict
ISMAP Specifies that the image is a clickable map. The image must be contained within a A element. Strict
SRC="url" Specifies the address of the image. See A for details. Strict
USEMAP="#name" Defines this image as a client-side image map. The name must point to a MAP element. Currently the MAP element must be in the same document as the image map. Strict

INPUT

TagExplanationMode
<INPUT> Can only appear within a FORM element
Defines an input field in a form.
Strict
AttributeExplanationMode
TYPE=CHECKBOX
TYPE=HIDDEN
TYPE=IMAGE
TYPE=PASSWORD
TYPE=RADIO
TYPE=RESET
TYPE=SUBMIT
TYPE=TEXT
Defines the type of input field:
TYPEMeaning
CHECKBOXA simple checkbox, on or off
HIDDENInvisible field, but will be sent with the form data
IMAGEClickable image, much like image maps
PASSWORDOne-line text entry, but typed text will be unreadable
RADIORadiobuttons, one choice out of many
RESETButton to reset all fields to their initial state
SUBMITButton to send the form data
TEXTOne-line text entry, this is the default type
Strict
ALIGN=TOP
ALIGN=MIDDLE
ALIGN=BOTTOM
Specifies the alignment of an IMAGE field. Strict
CHECKED Specifies that a CHECKBOX or RADIO button should be initially checked. Strict
MAXLENGTH=nn Specifies the maximum number of characters that can be typed in a TEXT or PASSWORD field. Strict
NAME="name" Gives this field a name. Fields without a name will not be included in the form data sent. Strict
SRC="url" Specifies the source URL of the image for an IMAGE type field. Strict
SIZE=nn Specifies the size of the input box for TEXT and PASSWORD fields, in characters. Strict
VALUE="value" For CHECKBOX, RADIO, HIDDEN and SUBMIT this specifies the value (data) to be included if the form is sent.
For TEXT and PASSWORD this specifies the initial value of the input box.
For SUBMIT and RESET this specifies the button label.
Strict

ISINDEX

TagExplanationMode
<ISINDEX> Specifies that this page is a searchable index.

Note: The HTML definition states that this tag can only be used within a HEAD element. Because there are many pages that has this tag in the document BODY, AWeb does not impose this restriction, not even in strict mode!

Strict
AttributeExplanationMode
PROMPT="prompt" Defines the propmt to use. Default is
This is a searchable index. Enter keywords:
Strict

KBD

TagExplanationMode
<KBD> ... </KBD> Specifies keyboard input. Typically rendered in a fixed width font. Strict

LI

TagExplanationMode
<LI> Can only appear within a OL or ULelement
Defines a list item. The item is rendered indented with a bullet in front.
Strict
AttributeExplanationMode
VALUE=nn Specifies the number to use in the bullet for an ordered list (OL). Strict
TYPE=CIRCLE
TYPE=DISC
TYPE=SQUARE
Sets the type of bullet for an unordered list (UL). Strict
TYPE=1
TYPE=A
TYPE=a
TYPE=I
TYPE=i
Sets the type of bullet for an ordered list (OL).
TYPE Meaning
1Ordinary numbers (default) (1,2,3,4,...)
ACapital letters (A,B,C,D,...)
alowercase letters (a,b,c,d,...)
IRoman numbers in capital letters (I,II,III,IV,...)
iRoman numbers in lowercase letters (i,ii,iii,iv,...)
Strict
DINGBAT="name" Specifies the type of icon entity to use as a bullet in an unordered list (UL). Tolerant
SRC="url" Specifies the source of an image to use as a bullet in an unordered list (UL). Tolerant (HTML 3.0)
SKIP=nn Specifies the number of items to skip relative to the previous item in an ordered list (OL). Tolerant (HTML 3.0)

LISTING

TagExplanationMode
<LISTING> ... </LISTING> Specifies a listing. The text is rendered in a fixed width font, exactly as it appears in the document source. No word-wrapping is done. Strict

MAP

TagExplanationMode
<MAP> ... </MAP> Defines a set of hot zones for a client-side image map (see IMG).
The MAP element should contain one or more AREA elements.
Strict
AttributeExplanationMode
NAME="name" The name of the map, as it is references by the USEMAP attribute of the IMG element. Strict

MENU

TagExplanationMode
<MENU> ... </MENU> Specifies a menu list. AWeb renders a MENU list exactly the same as a UL list. Strict

OL

TagExplanationMode
<OL> ... </OL> Defines an ordered list. Items in the list are preceded by numbered bullets.
An ordered list should contain one or more LI elements.
Strict
AttributeExplanationMode
TYPE=1
TYPE=A
TYPE=a
TYPE=I
TYPE=i
Sets the type of bullet for this list.
TYPE Meaning
1Ordinary numbers (default) (1,2,3,4,...)
ACapital letters (A,B,C,D,...)
alowercase letters (a,b,c,d,...)
IRoman numbers in capital letters (I,II,III,IV,...)
iRoman numbers in lowercase letters (i,ii,iii,iv,...)
Strict
START=nn Sets the number to start with. Default is 1. Strict
CONTINUE Specifies that the numbers should continue where the previous ordered list ended. Tolerant (HTML 3.0)
SEQNUM=nn Sets the number to start with. Same as START. Tolerant (HTML 3.0)

OPTION

TagExplanationMode
<OPTION> ... </OPTION> Can only appear within a SELECT element
Defines an option in a selection list in a form.

The end tag is optional.

Strict
AttributeExplanationMode
VALUE="value" Specifies the value to be included in the form data if this option is selected. Default is the option text. Strict
SELECTED Specifies that this option should be initially selected. Strict

P

TagExplanationMode
<P> ... </P> Denotes a paragraph in the document. Strict
AttributeExplanationMode
ALIGN=LEFT
ALIGN=CENTER
ALIGN=RIGHT
Renders the text and other elements within the paragraph left aligned, centered within the window width, or right aligned with the window border. Strict

PRE

TagExplanationMode
<PRE> ... </PRE> Specifies preformatted text. The text is rendered in a fixed width font, exactly as it appears in the document source. No word-wrapping is done. Strict

SAMP

TagExplanationMode
<KBD> ... </KBD> Specifies sample output. Typically rendered in a fixed width font. Strict

SCRIPT

TagExplanationMode
<SCRIPT> ... </SCRIPT> Can only appear within a HEAD element
Specifies script statements. Currently AWeb does not support scripts. Instead the contents of the SCRIPT element is ignored.
Strict

SELECT

TagExplanationMode
<SELECT> ... </SELECT> Can only appear within a FORM element
Defines a selection field in a form. Depending on the type of field and the settings, this can be a cycle-type field or a scrollable list.

The SELECT element should contain one or more OPTION elements that define the options to choose from.

Strict
AttributeExplanationMode
MULTIPLE Specifies that more than one option can be selected simultaneously. The field will be rendered as a scrollable list with checkmarks to indicate selected items. Strict
NAME="name" Gives this field a name. Fields without a name will not be included in the form data sent. Strict
SIZE=nn Specifies the vertical size of the field. A size of 1 will usually be rendered as a cycle-type field. A size of 2 or more will be rendered as a scrollable list, where the number specifies how many items are visible. Strict

SMALL

TagExplanationMode
<SMALL> ... </SMALL> Renders text in a small font. Strict

S or STRIKE

TagExplanationMode
<S> ... </S>
<STRIKE> ... </STRIKE>
Renders text with strike through. Strict

STRONG

TagExplanationMode
<STRONG> ... </STRONG> Specifies strongly emphasized text. Typically rendered in bold. Strict

STYLE

TagExplanationMode
<STYLE> ... </STYLE> Can only appear within a HEAD element
Specifies style information. Currently AWeb does not support styles. Instead the contents of the STYLE element is ignored.
Strict

SUB

TagExplanationMode
<SUB> ... </SUB> Renders text in subscript, that is in a smaller font and somewhat lower than usual. Strict

SUP

TagExplanationMode
<SUP> ... </SUP> Renders text in superscript, that is in a smaller font and somewhat higher than usual. Strict

TABLE

TagExplanationMode
<TABLE> ... </TABLE> Defines a table. The TABLE element may contain a CAPTION element and should contain one or more TR (table row) elements. Strict
AttributeExplanationMode
ALIGN=LEFT
ALIGN=CENTER
ALIGN=RIGHT
Specifies the location where to render the table in the window. Default is left aligned. Strict
BORDER
BORDER=nn
Specifies that the table cells should have borders. If a number is given, it specifies the width of the border in pixels.

Default is no border. Specifying BORDER=0 is the same as not specifying the BORDER attribute.

Strict
CELLPADDING=nn Specifies the distance between the cell contents and the cell border, in pixels. Strict
CELLSPACING=nn Specifies the distance that adjacing cells should be separated, in pixels. This is including any borders. Strict
WIDTH=nn%
WIDTH=nn
Specifies the width of the table, either in a percentage of the window width, or as a number of pixels.

Default is to make the table the minimum size for which all elements can be rendered without wrapping, but not wider than the window.

Strict

TD

TagExplanationMode
<TD> ... </TD> Can only appear within a TR element
Defines a table cell.

The end tag is optional.

Strict
AttributeExplanationMode
ALIGN=LEFT
ALIGN=CENTER
ALIGN=RIGHT
Renders the text and other elements within the table cell left aligned, centered within the cell width, or right aligned with the cell border.

This attribute overrides the ALIGN attribute of the TR element.

Strict
VALIGN=TOP
VALIGN=MIDDLE
VALIGN=BOTTOM
VALIGN=BASELINE
Specifies the vertical alignment of the cell contents:
ALIGNMeaning
TOPplaces the cell contents at the top of the cell
MIDDLEplaces the cell contents vertically centered within the cell
BOTTOMplaces the cell contents at the bottom of the cell
BASELINEaligns the text in this cell with the text in other cells in the same row that have VALIGN=BASELINE specified

This attribute overrides the VALIGN attribute of the TR element.

Strict
COLSPAN=nn This cell spans several adjacent columns. Strict
ROWSPAN=nn This cell spans several adjacent rows. Strict
NOWRAP Text in this cell will not word wrap. The cell will be made wide enough to show the text without wrapping. Strict
WIDTH=nn%
WIDTH=nn
Specifies the width of this column, either in a percentage of the table width or as a number of pixels. Tolerant (NS)

TEXTAREA

TagExplanationMode
<TEXTAREA> ... </TEXTAREA> Can only appear within a FORM element
Defines a multi line, scrollable text entry field in a form.

The text contained in this element will be the initial text displayed in the field, including line breaks.

Strict
AttributeExplanationMode
COLS=nn Width of the field in text columns. Strict
ROWS=nn Height of the field in rows. Strict
NAME="name" Gives this field a name. Fields without a name will not be included in the form data sent. Strict

TH

TagExplanationMode
<TH> ... </TH> Can only appear within a TR element
Defines a table header cell.

The end tag is optional.

Strict
AttributeExplanationMode
ALIGN=LEFT
ALIGN=CENTER
ALIGN=RIGHT
Horizontal alignment, see TD.

Default is ALIGN=CENTER.

Strict
VALIGN=TOP
VALIGN=MIDDLE
VALIGN=BOTTOM
VALIGN=BASELINE
Vertical alignment, see TD.

Default is VALIGN=MIDDLE.

Strict
COLSPAN=nn This cell spans several adjacent columns. Strict
ROWSPAN=nn This cell spans several adjacent rows. Strict
NOWRAP Text in this cell will not word wrap. The cell will be made wide enough to show the text without wrapping. Strict
WIDTH=nn%
WIDTH=nn
Specifies the width of this column, either in a percentage of the table width or as a number of pixels. Tolerant (NS)

TITLE

TagExplanationMode
<TITLE> ... </TITLE> Can only appear within a HEAD element
Gives the document a title. Every document should have a title.
Strict

TR

TagExplanationMode
<TR> ... </TR> Can only appear within a TABLE element
Defines a table row.

The end tag is optional.

Strict
AttributeExplanationMode
ALIGN=LEFT
ALIGN=CENTER
ALIGN=RIGHT
Renders the text and other elements within table cells in this row left aligned, centered within the cell width, or right aligned with the cell border.

This attribute can be overriden by the ALIGN attribute of the TD or TH element.

Strict
VALIGN=TOP
VALIGN=MIDDLE
VALIGN=BOTTOM
VALIGN=BASELINE
Specifies the vertical alignment of the contents of the cells in this row:
ALIGNMeaning
TOPplaces the cell contents at the top of the cell
MIDDLEplaces the cell contents vertically centered within the cell
BOTTOMplaces the cell contents at the bottom of the cell
BASELINEaligns the text in all cells inthis row

This attribute can be overriden by the VALIGN attribute of the TD or TH element.

Strict

TT

TagExplanationMode
<TT> ... </TT> Renders text in a fixed width font ("teletype"). Usually it is better to use one of the logical styles (like CODE) instead of phisycal styles like TT. Strict

U

TagExplanationMode
<U> ... </U> Renders text underscored. Usually it is better to use one of the logical styles (like STRONG) instead of phisycal styles like U. Strict

UL

TagExplanationMode
<UL> ... </UL> Defines an unordered list. Items in the list are preceded by bullets.
An unordered list should contain one or more LI elements.
Strict
AttributeExplanationMode
TYPE=CIRCLE
TYPE=DISK
TYPE=SQUARE
Sets the type of bullet for this list. Strict
DINGBAT="name" Specifies the type of icon entity to use as a bullet in this list. Tolerant
SRC="url" Specifies the source of an image to use as a bullet in this list. Tolerant (HTML 3.0)
PLAIN The list items will not be preceded by bullets. Tolerant (HTML 3.0)

VAR

TagExplanationMode
<VAR> ... </VAR> Specifies a variable (e.g. in formulas). Typically rendered in italics. Strict

XMP

TagExplanationMode
<LISTING> ... </LISTING> Specifies an example text. The text is rendered in a fixed width font, exactly as it appears in the document source. No word-wrapping is done. Strict

Colour specifications

The BODY, FONT and HR tags have attributes that take a colour specification. There are two ways of specifying a colour: by RGB value or by name.

By RGB value

This is a six-digit hexadecimal number, preceded by a hash sign (#). The number is interpreted as 2 digits for RED, 2 digits for GREEN and 2 digits for BLUE. 00 means this colour doesn't contribute to the resulting colour, FF means this colour contributes at its maximum.

By name

The HTML 3.2 standard defines 16 colour names. In tolerant mode, AWeb also recognizes a long list of names introduced by NetScape. Look at the colour list to see all colours.


<- Back to index.